home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EuroCD 3
/
EuroCD 3.iso
/
Rexx
/
UnsetLocks.bed
< prev
next >
Wrap
Text File
|
1998-06-24
|
360b
|
26 lines
/*
** $VER: UnsetLocks.bed 1.0 (03.01.96)
**
** Unset all display and input locks currently set in any BlacksEditor
** document.
**
** Modified by Marco Negri
*/
OPTIONS RESULTS
OPTIONS FAILAT 11
ADDRESS BED
GetDocuments
docs = RESULT
DO WHILE docs ~= ''
PARSE VAR docs '"' . '" ' port docs
ADDRESS VALUE port
SetDisplayLock OFF
SetInputLock OFF
END